home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / raytrace / rayshade / graphtal.lzh / Graphtal.Amiga / Options.h < prev    next >
C/C++ Source or Header  |  1992-11-17  |  2KB  |  73 lines

  1. /*
  2.  * Options.h - collection of program options.
  3.  *
  4.  * Copyright (C) 1992, Christoph Streit (streit@iam.unibe.ch)
  5.  *                     University of Berne, Switzerland
  6.  * All rights reserved.
  7.  *
  8.  * This software may be freely copied, modified, and redistributed
  9.  * provided that this copyright notice is preserved on all copies.
  10.  *
  11.  * You may not distribute this software, in whole or in part, as part of
  12.  * any commercial product without the express consent of the authors.
  13.  *
  14.  * There is no warranty or other guarantee of fitness of this software
  15.  * for any purpose.  It is provided solely "as is".
  16.  *
  17.  */
  18.  
  19. #ifndef Options_H
  20. # define Options_H
  21.  
  22. #include "rcString.h"
  23. #include "Vector.h"
  24.  
  25. //___________________________________________________________ Options
  26.  
  27. class Expression;
  28. class HullSymtab;
  29.  
  30. struct Options
  31. {
  32.   Options();
  33.  
  34.   rcString iname;
  35.   rcString oname;
  36.   rcString drivername;
  37.   rcString optionsForCPP;
  38.  
  39.   int      verbose;
  40.   int      quiet;
  41.   int      printlsys;
  42.   int      printModules;
  43.   int      deleteModules;
  44.   int      resX;
  45.   int      resY;
  46.   Vector   eye;
  47.   Vector   lookat;
  48.   Vector   up;
  49.   double   fov;
  50.   int      autoscale;
  51.   int      coneSpheres;
  52.   int      showHulls;
  53.   int      coneResolution;
  54.   int      sphereResolution;
  55.  
  56.   real defaultForward;
  57.   real defaultPitch;
  58.   real defaultTurn;
  59.   real defaultRoll;
  60.  
  61.   Expression* tropismX;
  62.   Expression* tropismY;
  63.   Expression* tropismZ;
  64.   Expression* weight;
  65.   HullSymtab* hulls;
  66. };
  67.  
  68. extern Options theOptions;
  69.  
  70. void parseOptions(int, char**);
  71.  
  72. #endif // Options_H
  73.